home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////
- // DictionaryTable
- // by Charles Lloyd
- ////////////////////////
-
-
- DictionaryTable: WOGenericContainer {
- elementName = "table";
- border = borderSize;
- cellPadding=cellPadding;
- cellSpacing=cellSpacing;
- };
-
- EntryRepetition: WORepetition {
- list = allKeys;
- item = currentKey;
- };
-
- KeyCell: WOString {
- value = currentKey;
- };
-
- ValueCell: WOString {
- value = currentValue;
- };
-
- Comment: WOConditional {
- condition = NO;
- };
-